 .about-section {
    background-color:#212529 ;
    
    padding: 80px 0;
  }

  .about-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffc107;
  }

  .about-section p {
    font-size: 16px;
    color: #ffc107;
  }

  .about-highlight {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
    animation: fadeIn 1.2s ease-in-out;
  }

  .about-highlight h2 {
    font-size: 3.8rem;
    font-weight: 600;
    color: #f1c40f;
    margin-bottom: 20px;
  }

  .about-highlight > p{
    color: black;
    line-height: 32px;
  }

  .stats-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    margin-bottom: 30px;
  }

  .stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }

  .stats-card h3 {
    font-size: 2rem;
    color: #ffc107;
    font-weight: 700;
  }

  .stats-card p {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }












/* extra  */


  .as_about_wrapper {
    background: #f9f9f9;
    position: relative;
  }

  .as_heading, .as_heading1 {
    font-weight: 700;
    color: #2c3e50;
  }

  .as_font14 {
    font-size: 16px;
    color: #555;
  }

  .as_about_detail {
    animation: fadeInUp 1s ease-in-out;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .as_contact_expert {
    /* margin-top: 40px;
    padding: 30px;  */
    background: #212529;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .as_contact_expert img{
    height: 167px;
  }

  .as_contact_expert:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }

  .as_year_ex {
    font-size: 36px;
    font-weight: bold;
    color: #e67e22;
    display: block;
    margin-bottom: 10px;
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }




 
.call-section {
    background-color:#fff ;
    color: #212529;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .call-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .call-section h2 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .call-btn {
    background-color: #212529;
    color: #f1c40f;
    font-weight: bold;
    padding: 14px 32px;
    font-size: 2.1rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .call-btn:hover {
    background-color: #f1c40f;
    color: #000000;
  }

  .call-btn i {
    font-size: 2.3rem;
  }

  @media (max-width: 576px) {
    .call-section h1 {
      font-size: 1.75rem;
    }

    .call-section h2 {
      font-size: 1rem;
    }

    .call-btn {
      font-size: 1rem;
      padding: 12px 24px;
    }
  }






/* service  */


.services-section {
    background-color:#212529 !important ;
    padding: 80px 20px;
    color: #000;
  }

  .services-section .section-heading h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
  }

  .services-section .section-heading h3 {
    color: #ffc107 !important;
    margin-top: 10px;
    font-weight: 600;
  }

  .services-section .section-heading p {
    color: #ffc107;
    font-size: 1.5rem;
    max-width: 700px;
    margin: 20px auto;
  }

  .service-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  .service-card img {
   max-height: 255px;
  object-fit: Cover;
  object-position: top;
  margin-bottom: 20px;
  border-radius: 22px;
  }

  .service-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 15px;
  }

  .service-card p {
    font-size: 1.4rem;
    color: #333;
    flex-grow: 1;
    
  }

  .service-card a {
    text-decoration: none;
    margin-top: 20px;
  }

  .services-btn {
    display: inline-block;
    background: #ffc107;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  .services-btn:hover {
    background: #000000;
    color: #fff;
  }

  @media (max-width: 576px) {
    .services-section .section-heading h2 {
      font-size: 2rem;
    }

    .services-section .section-heading h3 {
      font-size: 1.2rem;
    }
  }


  /* feedback  */

  .feedback-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.section-heading h2 span {
  font-weight: bold;
  font-size: 32px;
}
.section-heading h3 {
  font-size: 24px;
  margin-top: 10px;
}





/* footer  */


.footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #f1c40f;
  text-decoration: underline;
}

.footer h5 {
  font-weight: 600;
}


#my-button{
    margin-top: 60px;
}




@media (max-width: 768px) {
  .home-btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .hindi h3 {
    font-size: 20px;
  }

  .hindi p {
    font-size: 16px !important;
  }
}
#border-footer{
    background-color: #212529;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

#space-footer{
    height: 1px;
    background-color: #fff;
    width: 80vw;
}


.slider-text{

}




#header-image img{
 background-color: #212529;

}


.navbar-brand > img{
 height: auto;
  width: 136px;
  position: relative;
  left: 32px;
  bottom: 12px;
}


@media only screen and (max-width: 813px){

.tr-header {
  background: #212529;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  height: auto;
}
.navbar-brand > img{
 height: auto;
  width: 110px;
  top: -5px;
 
  left: -69px;
  
}

}


.feedback-card img {
  max-height: 368px;
  object-fit: cover;
  object-position: top;
}


.navbar-nav .nav-link {
    color: #ffc107 !important;
    padding-left: 1.75rem;   /* ensure some left spacing */
    text-indent: 0 !important;
    overflow: visible !important;
    display: block; }


    .navbar-nav .nav-link {
  color: #ffc107 !important;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #ffc107;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffffff !important;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}


.sticky-navbar {
  position: sticky;
  top: 0;
  z-index: 1030; /* stays above other content */
}


.feedback-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.feedback-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
  
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.15);
  }

  @media (max-width: 576px) {
    .testimonial-card {
      text-align: center;
    }

    .testimonial-card .d-flex {
      flex-direction: column;
      align-items: center;
    }

    .testimonial-card img {
      margin-bottom: 1rem;
    }
  }


   #contact h3 {
    letter-spacing: 1px;
  }

  .call-btn {
    transition: all 0.3s ease;
    font-size: 1.25rem;
  }

  .call-btn:hover {
    background-color: #e0a800;
    color: #212529;
    transform: scale(1.05);
  }

  #contact i {
    font-size: 1.2em;
  }

  @media (max-width: 776px) {
    .call-btn {
      font-size: 1rem;
      padding: 0.75rem 2rem;
    }
    .feedback-card img{
      display: flex;
      flex-direction: column;
    }

    .navbar-brand > img{
      position: relative;
      right: 50;
    }
  }


  body{
    padding-top: 80px;
  }


   .zigzag-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 767.98px) {
    .zigzag-img {
      height: 200px;
    }
  }